home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Misc / FLM / otherfiles / english / ARexx / finalc_look.rexx < prev    next >
OS/2 REXX Batch file  |  2000-01-01  |  913b  |  30 lines

  1. /* Script for sending a word from FinalCopy to FLM
  2.  
  3.    You must only copy this file in your FinalCopy directory, and then
  4.    rename it as "AMacro_?".
  5.    For "?" you must indicate a number from 1 to 10.
  6.  
  7.    Now it should be possible to call FLM either through the function key
  8.    (number you wrote in place of "?") or from the menu "ARexx".
  9.  
  10.    Here I've customised FinalCopy 1. It's possible that something changed
  11.    in FinalCopy 2. In this case, simply look at your FinalCopy manual.
  12.  
  13. -> Warning: The program RexxMast must be active !!!
  14. */
  15.  
  16. /* Here indicate, please, the FLM path and program name */
  17. initiation=run "dh0:FLM/FLM"
  18.  
  19. Options RESULTS
  20.  
  21. IF ~show('P','FLM') THEN DO
  22.  /* if FLM is not yet running */
  23.  ADDRESS COMMAND initiation
  24.  ADDRESS COMMAND "SYS:RexxC/WaitForPort FLM"
  25. END
  26.  
  27. Extract /* Writes the highlighted text in Variable RESULT*/
  28.  
  29. Address FLM LOOKWORD RESULT /* Send contents of RESULT to FLM*/
  30.